题解 2776: A*B问题

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

筛选

只是写写注意事项

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

ikun崩溃代码

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

2776: A*B问题

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