Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

加减乘除都不用就把这题AC了!

Posted by nan5515522 at 2014-05-26 21:06:14 on Problem 1000 and last updated at 2014-05-26 21:06:52
我们11维空间没有加减乘除,但我们有聪明的大脑和一棵热爱物理的心!
import java.util.*;
public class Main {

	public static void main(String[] args) 
	{
		Scanner sc = new Scanner(System.in);
		int a, b, c, d;
		a = sc.nextInt();
		b = sc.nextInt();
		while(b != 0)
		{
			c = a ^ b;
			d =  (a & b) << 1;
			a = c; b = d;
		}
		System.out.println(a);

	}

}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator