题解 2776: A*B问题

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c; scanf("%d %d ",&a,&b); c=a*b; printf("%d"……

编写题解 2776: A*B问题

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<math.h> using namespace std; int main() {     int a,……

2776: A*B问题

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     long long a,b;     cin>……

11111111111111111

摘要:解题思路:A,B=map(int,input().strip().split())n=A*Bprint(n)注意事项:111111111参考代码:111111111111……

2776: A*B问题

摘要:解题思路:  简单的求A*B的输出  就是加了一个范围  1 <= A,B <= 50000。注意事项:参考代码:#include<stdio.h>int main(){ int A,B; scanf……

  编写题解 2776: A*B问题

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int a,b;    cin>>a>>b;    ……