首页 > 【模板】牛牛学乘法
头像 _氤氲_
发表于 2025-12-22 15:55:11
#include <stdio.h> int main() { int a,b; scanf("%d %d",&a,&b); printf("%d",a*b); return 0; }
头像 大方的杰克希望被offer砸中
发表于 2025-12-02 21:52:15
import sys a,b = map(int,input().split()) c = a * b print(c)
头像 小7界
发表于 2026-05-13 15:21:57
import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = 展开全文
头像 F145H
发表于 2026-04-13 15:59:17
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d",a*b); return 0; }
头像 牛客590379693号
发表于 2025-12-04 16:24:22
#include <stdio.h> int main() { int a,b,c; scanf("%d%d",&a,&b); c=a*b; printf("%d",c); return 0; }
头像 L1LL
发表于 2026-02-08 19:15:52
#include <iostream> using namespace std; int main() { int a, b; scanf("%d%d", &a, &b); printf("%d", a * b); }
头像 江停2
发表于 2026-04-16 20:24:02
#include <stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); printf("%d",a*b); return 0; }
头像 无聊的劳伦斯在做测评
发表于 2026-03-03 13:27:46
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a*b); return 0; }

等你来战

查看全部