题意 如果两个数的数位和一样那么这两个数就是友好数,称数位和为友好ID,现在要找出给定的序列中有几个不同的友好ID 思路 按照要求模拟就好了 记录有几个不同的友好ID,可以采用set 代码 #include <iostream> #include <vector> #include <queue> ...
分类:
其他好文 时间:
2021-03-15 11:31:00
阅读次数:
0
1.实验任务11.行方向 #include<stdio.h> int main(){ printf(" o o\n"); printf("<H> <H>\n"); printf(" I I I I\n"); return 0; } 2.列方向 #include<stdio.h> int main() ...
分类:
编程语言 时间:
2021-03-15 11:30:29
阅读次数:
0
#include<stdio.h> int main(){ float x,y; float r1,r2,r3,r4; x=1; y=2; r1=x+y; r2=x-y; r3=x*y; r4=x/y; printf("r1=%f\n",r1); printf("r2=%f\n",r2); prin ...
分类:
其他好文 时间:
2021-03-15 11:15:58
阅读次数:
0
//打印一个字符小人 #include <stdio.h> int main() { printf(" o\n"); printf("<H>\n"); printf("I I\n"); printf(" o\n"); printf("<H>\n"); printf("I I\n"); return ...
分类:
编程语言 时间:
2021-03-15 11:13:42
阅读次数:
0
Tips:也可以尝试对deque,list进行类似的实验以加深理解。 #include <iostream> #include <vector> //#include <deque> using namespace std; int main() { vector <int> a; for(int ...
分类:
编程语言 时间:
2021-03-15 11:09:37
阅读次数:
0
#include<stdio.h> int main() { int x, y; int r1, r2, r3, r4; x = 1; y = 2; r1 = x + y; r2 = x - y; r3 = x * y; r4 = x / y; printf("r1 = %d\n", r1); pr ...
分类:
其他好文 时间:
2021-03-15 11:09:08
阅读次数:
0
#include <fstream> #include <strstream> using namespace std; int main(int argc,char*argv[]) { strstream textfile; ifstream in(argv[1]); textfile << in ...
分类:
编程语言 时间:
2021-03-15 11:07:17
阅读次数:
0
数组的使用 For-Each 循环 普通的for循环 数组作方法入参 数组做返回值 package com.liuqi.array; public class ArrayDemo04 { public static void main(String[] args) { int[] arrays = ...
分类:
编程语言 时间:
2021-03-15 11:04:39
阅读次数:
0
vue代码: 1 <template> 2 <div> 3 <div class="main"> 4 <ul> 5 <li 6 v-for="(item, index) in list" 7 :key="index" 8 :class="{ new: item.new }" 9 @click="Op ...
分类:
其他好文 时间:
2021-03-15 11:03:20
阅读次数:
0
实验任务1.1// c语言实验1.cpp : 定义控制台应用程序的入口点。 //列向打印两个字符小人。 #include "StdAfx.h" #include<stdio.h> #include<stdlib.h> int main() { printf(" 0 \n"); printf("<H> ...
分类:
编程语言 时间:
2021-03-15 11:00:49
阅读次数:
0