Recent projects

examen 1

Java · an anonymous user
10 hours ago
import java.util.*; public class Main { // Se corrigió el nombre, el parámetro 'n' y la sintaxis del while public static void examen_1(int n) { int a = 1, b = 1; while (b <= n) { System.out.println(a + ","); //

calc

NodeJS · an anonymous user
11 hours ago
let strLeft = "1.0"; let lngLeftDecDigits; let lngLeft; // 浮動小数点誤差 console.log(1.0-0.99) // 左辺に小数がある if(strLeft.indexOf(".") > 0){ lngLeftDecDigits = strLeft.length - (strLeft.indexOf(".")+1);

words app1

C · kiyoleticia
11 hours ago
#include <stdio.h> #include <string.h> #include <stdlib.h> /* rand(), strand()を使うため追加*/ #include <time.h> /* time() 変数の種を変えるため追加*/ #define MAX_WORDS 100 typedef struct{ char word[50];

calc

NodeJS · an anonymous user
11 hours ago
let strLeft = "1.0"; let lngLeftDecDigits; let lngLeft; // 浮動小数点誤差 console.log(1.0-0.99) // 左辺に小数がある if(strLeft.indexOf(".") > 0){

a10,U2

Python · antonioo
11 hours ago
print('Hello world!')

a9,U2

Python · antonioo
11 hours ago
print('Hello world!')

Diseño 3

C++ · jacintosuarez24
11 hours ago
#include <iostream> int main() { std::cout << "Hello world!" << std::endl; return 0; }

speeding ticket2

Python · hmp
11 hours ago
'''문제 1. 구간을 배열로 펼쳐보기 길이가 10칸인 도로가 있다. 각 줄은 길이 속도 를 의미한다. 예를 들어 3 50은 앞에서부터 3칸을 모두 50으로 채우라는 뜻이다. 모든 구간을 채운 뒤 배열을 출력하시오. 입력 3

a11,U2

Python · antonioo
11 hours ago
h

3번

C · SGOC
11 hours ago
#include <stdio.h> int main() { int Number; int i, j; scanf("%d", &Number); printf("0~9 사이의 정수를 입력하세요 : "); while (Number < 0 || Number > 9){

Diseño 2

C · an anonymous user
11 hours ago
#include <stdio.h> int main() { ‎int x= 6;. ‎float y =2.0; ‎//calculo del programa ‎printf("\n---------resultado --------"); ‎printf("\na x*y = %.2f", x*y); ‎printf() ‎printf()

104쪽 22번

C · kimjiyeon
11 hours ago
#include <stdio.h> /* 이중 포인터 수업 전략 1. 그림 그리기 2. 표 만들기 그림에서 포인터 구조로 옳게 표현된 번호 = 2 표에서 변수의 출력값 = */ int main(){ char str[4][3]={"ab", "cd", "ef",

ITDSA3

MongoDB · hat0
11 hours ago
// Clean up existing collections db.AUTHOR.drop(); db.BOOK.drop(); db.BOOKAUTHOR.drop(); db.MEMBER.drop(); db.BORROWEDBOOKS.drop(); // Create collections db.createCollection("AUTHOR"); db.createCollection("BOOK");

ITDSA2

MongoDB · hat0
11 hours ago
// Clean up existing collections db.AUTHOR.drop(); db.BOOK.drop(); db.BOOKAUTHOR.drop(); db.MEMBER.drop(); db.BORROWEDBOOKS.drop(); // Create collections db.createCollection("AUTHOR"); db.createCollection("BOOK");

maincard

Java · an anonymous user
11 hours ago
public class MainCard { /** * @param args */ public static void main(String[] args) { //use the code below eventually //Before then, write code here to test the CardOrder class //CardInteraction cf = new CardInteraction(); //cf.run();

ITDSA1

MongoDB · hat0
11 hours ago
// Clean up existing collections db.AUTHOR.drop(); db.BOOK.drop(); db.BOOKAUTHOR.drop(); db.MEMBER.drop(); db.BORROWEDBOOKS.drop(); // Create collections db.createCollection("AUTHOR"); db.createCollection("BOOK");

C++수업#2

C++ · an anonymous user
11 hours ago
#include <iostream> #include <string> #include <cmath> using namespace std; struct Student{ //암묵적으로 구조체 이름은 대문자로 시작. 구조체는 메인 위에서 선언 string name; int age; double score; }; //구조체 뒤에는 ; 붙여야 함

suspension force analysis

Octave · an anonymous user
11 hours ago
clc; clear; close all; %% ============================================================ %% VEHICLE PARAMETERS %% ============================================================ g = 9.81;

2번

C · SGOC
11 hours ago
#include <stdio.h> int main() { int Number, Soultion; int Ten = 1; scanf("%d", &Number); while (Number > 0) {

1번문제

C · SGOC
11 hours ago
#include <stdio.h> int main() { int i=3; int j=5; scanf("%d%d", &i, &j); if (i >= j) printf("%d - %d = %d\n", i, j, i - j); else